home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / PPL / PWRDWARN.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1994-02-14  |  908 b   |  72 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.     String   STRING002
  22.     String   STRING003
  23.     String   STRING004
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     INTEGER001 = CurConf()
  28.     STRING001 = ""
  29.     STRING002 = "SYSTEM DAEMON"
  30.     STRING003 = "Password Expiration"
  31.     STRING004 = PPEPath() + PPEName() + ".MSG"
  32.     Print "Your password will expire in @OPTEXT@ days.  "
  33.     PrintLn "Use the (W) command to change it."
  34.     Message INTEGER001, STRING001, STRING002, STRING003, "R", Date() + 3, 0, 0, STRING004
  35.  
  36. ;------------------------------------------------------------------------------
  37. ;
  38. ; Usage report (before postprocessing)
  39. ;
  40. ; ■ Statements used :
  41. ;
  42. ;    5       Let 
  43. ;    1       Print 
  44. ;    1       PrintLn 
  45. ;    1       Message 
  46. ;
  47. ;
  48. ; ■ Functions used :
  49. ;
  50. ;    3       +
  51. ;    1       Date()
  52. ;    1       CurConf()
  53. ;    1       PPEPath()
  54. ;    1       PPEName()
  55. ;
  56. ;------------------------------------------------------------------------------
  57. ;
  58. ; Analysis flags : No flag
  59. ;
  60. ;------------------------------------------------------------------------------
  61. ;
  62. ; Postprocessing report
  63. ;
  64. ;    0       For/Next
  65. ;    0       While/EndWhile
  66. ;    0       If/Then or If/Then/Else
  67. ;    0       Select Case
  68. ;
  69. ;------------------------------------------------------------------------------
  70. ;                 AEGiS Corp - Break the routines, code against the machines!
  71. ;------------------------------------------------------------------------------
  72.